for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
export const _isArray = value => {
_isArray
return (value !== null &&
value.length >= 0 &&
Object.prototype.toString.call(value) === '[object Array]');
};
export const _pop = array => {
_pop
let newarray = [];
for(let i = 0; i < array.length-1; i++){
newarray[i] = array[i];
}
return newarray;